home *** CD-ROM | disk | FTP | other *** search
- { %filename% -- interface file for %AppName% }
- { Created %date% %time% by AppMaker }
-
- { This module overrides the AppMaker-generated code in z%Appname%Intf.% %}
- { It provides a place for you to add your own code and still be able to }
- { generate code for new changes to the user interface. This module will }
- { not be regenerated by AppMaker unless you delete it. Its superclass, }
- { z%Appname%Intf, may be regenerated to handle user interface changes% %}
- { without losing your hand-coded changes to this module. }
-
- Unit %AppName%Intf;
- Interface
-
- Uses
- TCL,
- AMCL,
- z%AppName%Intf,
- %AppName%Data;
-
- %for each dialog gen interface%
- %for each window gen interface%
- type
- C%Appname%Doc = object (Z%Appname%Doc)
- {your application-specific instance variables:}
-
- Procedure I%Appname%Doc% %(aSupervisor: CApplication;
- printable: Boolean); override;
- Procedure UpdateMenus; override;
- Procedure DoCommand (theCommand: longint); override;
-
- end; {C%Appname%Doc}
-
- type
- C%Appname%App = object (Z%Appname%App)
- {your application-specific instance variables:}
-
- Procedure I%Appname%App; override;
- Procedure SetUpFileParameters; override;
- Procedure UpdateMenus; override;
- Procedure DoCommand (theCommand: longint); override;
-
- end; {C%Appname%App}
-
- {----------}
- Implementation
-
- End. {%AppName%Intf}
-